home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / StatusTics.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  676 b   |  23 lines

  1.  
  2. /* $Id: StatusTics.h,v 1.1.1.1 1993/03/18 03:35:38 davis Exp $ */
  3.  
  4. #import "Status.h"
  5.  
  6. @interface Status (Tics)
  7.  
  8. - setTicsIn:(BOOL) cond;                /* YES = tics in, NO = tics out */
  9. - (BOOL) ticsIn;
  10. - setTicsCoord:(int)coord isOn:(BOOL)isOn;
  11. - (BOOL) ticsCoord:(int)coord;
  12. - setTicTypeCoord:(int)coord to:(int)anInt;
  13. - (int)ticTypeCoord:(int)coord;
  14. - setTicStartCoord:(int)coord to:(double)aDouble;
  15. - (double)ticStartCoord:(int)coord;
  16. - setTicEndCoord:(int)coord to:(double)aDouble;
  17. - (double)ticEndCoord:(int)coord;
  18. - setTicIncrementCoord:(int)coord to:(double)aDouble;
  19. - (double)ticIncrementCoord:(int)coord;
  20. - (DoubleValueSortedList *)ticDefsCoord:(int)coord;
  21.  
  22. @end
  23.